home *** CD-ROM | disk | FTP | other *** search
/ Celestin Apprentice 7 / Apprentice-Release7.iso / Environments / Clean 1.2.4 / IO Examples / Scrabble / Windows95 / systemsettings.icl < prev   
Encoding:
Modula Implementation  |  1997-05-13  |  443 b   |  23 lines  |  [TEXT/3PRM]

  1. implementation module systemsettings
  2.  
  3.  
  4. import    StdTuple
  5. import    deltaFont, deltaPicture
  6.  
  7.  
  8. /*    This module contains macro's to make the scrabble application platform customisable.
  9. */
  10.  
  11.  
  12. //    For graphics:
  13.  
  14. //    Font information:
  15.  
  16. font size            :== snd (SelectFont "MS Sans Serif" [] 8)
  17. letterfont            :== snd (SelectFont "Times" ["Bold"] 9)
  18. smallfont            :== snd (SelectFont "Small Fonts" [] 6)
  19.  
  20. //    Background colour:
  21.  
  22. rbBackground        :==    RGB 0.75  0.75  0.75
  23.